home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
By the Book
/
Learn C++ (CodeWarrior)
/
Chap 08.01 - readMe
/
readMe.cp
< prev
next >
Wrap
Text File
|
1995-10-21
|
155b
|
13 lines
#include <iostream.h>
#include <fstream.h>
int main()
{
ifstream readMe( "My File" );
char c;
while ( readMe.get( c ) )
cout << c;
return 0;
}